crypto/sha1.digest.h (field)
33 uses
crypto/sha1 (current package)
sha1.go#L39: h [5]uint32
sha1.go#L53: b = binary.BigEndian.AppendUint32(b, d.h[0])
sha1.go#L54: b = binary.BigEndian.AppendUint32(b, d.h[1])
sha1.go#L55: b = binary.BigEndian.AppendUint32(b, d.h[2])
sha1.go#L56: b = binary.BigEndian.AppendUint32(b, d.h[3])
sha1.go#L57: b = binary.BigEndian.AppendUint32(b, d.h[4])
sha1.go#L72: b, d.h[0] = consumeUint32(b)
sha1.go#L73: b, d.h[1] = consumeUint32(b)
sha1.go#L74: b, d.h[2] = consumeUint32(b)
sha1.go#L75: b, d.h[3] = consumeUint32(b)
sha1.go#L76: b, d.h[4] = consumeUint32(b)
sha1.go#L97: d.h[0] = init0
sha1.go#L98: d.h[1] = init1
sha1.go#L99: d.h[2] = init2
sha1.go#L100: d.h[3] = init3
sha1.go#L101: d.h[4] = init4
sha1.go#L178: binary.BigEndian.PutUint32(digest[0:], d.h[0])
sha1.go#L179: binary.BigEndian.PutUint32(digest[4:], d.h[1])
sha1.go#L180: binary.BigEndian.PutUint32(digest[8:], d.h[2])
sha1.go#L181: binary.BigEndian.PutUint32(digest[12:], d.h[3])
sha1.go#L182: binary.BigEndian.PutUint32(digest[16:], d.h[4])
sha1.go#L225: for i, s := range d.h {
sha1.go#L245: for i, s := range d.h {
sha1block.go#L23: h0, h1, h2, h3, h4 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4]
sha1block.go#L82: dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4] = h0, h1, h2, h3, h4
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |